home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form w5
- BorderStyle = 5 'Sizable ToolWindow
- Caption = "BOARD"
- ClientHeight = 675
- ClientLeft = 60
- ClientTop = 1065
- ClientWidth = 11880
- Icon = "w5.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- NegotiateMenus = 0 'False
- ScaleHeight = 675
- ScaleWidth = 11880
- ShowInTaskbar = 0 'False
- Begin VB.Timer Timer1
- Enabled = 0 'False
- Interval = 1000
- Left = -600
- Top = 3720
- End
- Begin VB.CommandButton Command1
- Caption = "Exit"
- Height = 255
- Left = 4080
- TabIndex = 0
- Top = 120
- Width = 2295
- End
- Attribute VB_Name = "w5"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Public AppBar As New TAppBar
- Sub l()
- With AppBar
- .AutoHide = True ' auto hide is true..board will hide like win95/98 bar
- .Edge = abeTop ' where to put board
- End With
- End Sub
- Private Sub Command1_Click()
- Timer1.Enabled = True
- AppBar.Detach
- End Sub
- Private Sub Form_Load()
- AppBar.Extends Me
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- AppBar.Detach
- End Sub
- Private Sub Timer1_Timer()
- End Sub
-